circular list - vertaling naar Engels
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

circular list - vertaling naar Engels

DATA STRUCTURE WHICH IS A LINEAR COLLECTION OF DATA ELEMENTS, CALLED NODES, EACH POINTING TO THE NEXT NODE BY MEANS OF A POINTER
Linked lists; Singly linked list; Circularly linked list; Singly-linked list; Linked List; Two-way list; Two-way linked list; Symmetrically linked list; Circular list; LinkedList; Tail sharing; Tail-sharing; Linked List in Pascal; Dynamic list; Circular linked list
  • Diagram of inserting a node into a singly linked list
  • Diagram of deleting a node from a singly linked list
  • A linked list is a sequence of nodes that contain two fields: an integer value and a link to the next node. The last node is linked to a terminator used to signify the end of the list.

circular list         

общая лексика

циклический список

список элементов данных, каждый из которых имеет указатель на следующий, а "последний" элемент ссылается на "первый". Поэтому просмотр такого списка можно начинать с любого элемента

антоним

linear list

Смотрите также

chained list; double-linked list; empty list; linked list

linked list         

общая лексика

связанный список

в программировании - список (структура данных), элементы которого не обязательно расположены в памяти последовательно. Доступ к следующему элементу осуществляется с помощью указателя, хранящегося в предыдущем элементе списка. У последнего элемента указатель имеет специальное значение, по которому определяется конец списка. Список может быть двунаправленным, когда каждый его элемент содержит ссылки как на следующий, так и на предшествующий элементы

Смотрите также

circular list; double-linked list; empty list; linear list; Lisp; pointer

circular mil         
UNIT OF AREA
Kcmil; Circular mils; Cmil; Circular inch; Circular millimetre; Circular Thou
[мат.] круговой мил

Definitie

ВИРУСЫ
(от лат. virus - яд), мельчайшие неклеточные частицы, состоящие из нуклеиновой кислоты (ДНК или РНК) и белковой оболочки (капсида). Форма палочковидная, сферическая и др. Размер 15 - 350 нм и более. Открыты (вирусы табачной мозаики) Д. И. Ивановским в 1892. Вирусы - внутриклеточные паразиты: размножаясь только в живых клетках, они используют их ферментативный аппарат и переключают клетку на синтез зрелых вирусных частиц - вирионов. Распространены повсеместно. Вызывают болезни растений, животных и человека. Резко отличаясь от всех других форм жизни, вирусы, подобно другим организмам, способны к эволюции. Иногда их выделяют в особое царство живой природы. Вирусы широко применяются в работах по генетической инженерии, канцерогенезу. Вирусы бактерий (бактериофаги) - классический объект молекулярной биологии.

Wikipedia

Linked list

In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. In its most basic form, each node contains: data, and a reference (in other words, a link) to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration. More complex variants add additional links, allowing more efficient insertion or removal of nodes at arbitrary positions. A drawback of linked lists is that access time is linear (and difficult to pipeline). Faster access, such as random access, is not feasible. Arrays have better cache locality compared to linked lists.

Linked lists are among the simplest and most common data structures. They can be used to implement several other common abstract data types, including lists, stacks, queues, associative arrays, and S-expressions, though it is not uncommon to implement those data structures directly without using a linked list as the basis.

The principal benefit of a linked list over a conventional array is that the list elements can be easily inserted or removed without reallocation or reorganization of the entire structure because the data items do not need to be stored contiguously in memory or on disk, while restructuring an array at run-time is a much more expensive operation. Linked lists allow insertion and removal of nodes at any point in the list, and allow doing so with a constant number of operations by keeping the link previous to the link being added or removed in memory during list traversal.

On the other hand, since simple linked lists by themselves do not allow random access to the data or any form of efficient indexing, many basic operations—such as obtaining the last node of the list, finding a node that contains a given datum, or locating the place where a new node should be inserted—may require iterating through most or all of the list elements.

Vertaling van &#39circular list&#39 naar Russisch